home *** CD-ROM | disk | FTP | other *** search
- /* file: callbook.h */
- /* this header file contains all the locations of the data */
- /* types for the callbook data file. All coordinates start at zero */
-
- #define THISYEAR 89 /* last 2 digits of the current year */
- #define RECORD_LENGTH 225 /* length of a record */
-
- #define CALLSIGN_START 0 /* location of item in record */
- #define CALLSIGN_LEN 8 /* number of bytes item uses in record */
- #define LAST_NAME_START 8
- #define LAST_NAME_LEN 20
- #define LAST_NAME_SUFF_START 28
- #define LAST_NAME_SUFF_LEN 4
- #define FIRST_NAME_START 32
- #define FIRST_NAME_LEN 11
- #define MIDDLE_INIT_START 43
- #define MIDDLE_INIT_LEN 1
- #define BIRTH_START 44
- #define BIRTH_LEN 5
- #define EFFECTIVE_START 49
- #define EFFECTIVE_LEN 5
- #define EXPIRATION_START 54
- #define EXPIRATION_LEN 6
- #define MAIL_ADRS_START 61
- #define MAIL_ADRS_LEN 35
- #define MAIL_ADRS_CTY_START 96
- #define MAIL_ADRS_CTY_LEN 20
- #define MAIL_ADRS_ST_START 116
- #define MAIL_ADRS_ST_LEN 2
- #define MAIL_ADRS_ZIP_START 118
- #define MAIL_ADRS_ZIP_LEN 9
- #define STA_ADRS_START 127
- #define STA_ADRS_LEN 60
- #define STA_ADRS_CTY_START 187
- #define STA_ADRS_CTY_LEN 20
- #define STA_ADRS_ST_START 207
- #define STA_ADRS_ST_LEN 2
- #define LICENSE_CLASS_START 209
- #define LICENSE_CLASS_LEN 1
- #define PREVIOUS_CALLSIGN_START 210
- #define PREVIOUS_CALLSIGN_LEN 8
- #define PREVIOUS_CLASS_START 218
- #define PREVIOUS_CLASS_LEN 1
- #define PROCESS_START 219
- #define PROCESS_LEN 5
-
-